C++ 定义一个类型成员
我们可以给类型在类中取别名:
class Screen {
public:
typedef std::string::size_type pos;
using pos = std::string::size_type;
}
这时我们必须先定义再解释。
我们可以给类型在类中取别名:
class Screen {
public:
typedef std::string::size_type pos;
using pos = std::string::size_type;
}
这时我们必须先定义再解释。